home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / openlink_overflow.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  96 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10169);
  10.  script_version ("$Revision: 1.17 $");
  11.  script_cve_id("CVE-1999-0943");
  12.  name["english"] = "OpenLink web config buffer overflow";
  13.  name["francais"] = "DΘpassement de buffer dans la config web de OpenLink";
  14.  script_name(english:name["english"], francais:name["francais"]);
  15.  
  16.  desc["english"] = "It is possible to make the remote server execute
  17. arbitrary code by sending one of these two URLs :
  18.  
  19.     GET AAA[....]AAA
  20.     GET /cgi-bin/testcono?AAAAA[...]AAA HTTP/1.0
  21.     
  22. Solution : Upgrade.
  23. Risk factor : High";
  24.  
  25.  desc["francais"] = "Il est possible de faire executer du code arbitraire
  26. au serveur en lui envoyant une des requΩtes :
  27.  
  28.     GET AAAA[...]AAA
  29.     GET /cgi-bin/testcono?AAAAA[...]AAA HTTP/1.0
  30.  
  31.  
  32. Solution : Mettez le α jour.
  33. Facteur de risque : ElevΘ";
  34.  
  35.  script_description(english:desc["english"], francais:desc["francais"]);
  36.  
  37.  summary["english"] = "OpenLink buffer overflow";
  38.  summary["francais"] = "DΘpassement de buffer dans OpenLink";
  39.  script_summary(english:summary["english"], francais:summary["francais"]);
  40.  
  41.  script_category(ACT_DESTRUCTIVE_ATTACK);
  42.  
  43.  
  44.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  45.         francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
  46.  family["english"] = "Gain root remotely";
  47.  family["francais"] = "Passer root α distance";
  48.  script_family(english:family["english"], francais:family["francais"]);
  49.  script_dependencie("find_service.nes", "httpver.nasl");
  50.  script_require_ports(8000);
  51.  exit(0);
  52. }
  53.  
  54. #
  55. # The script code starts here
  56. #
  57.  
  58. include("http_func.inc");
  59.  
  60.  
  61. port = 8000;
  62. if(get_port_state(port))
  63. {
  64.  if(http_is_dead(port:port))exit(0);
  65.  
  66.  data = http_get(item:crap(4096), port:port);
  67.  soc = http_open_socket(port);
  68.  if(soc)
  69.  {
  70.   send(socket:soc, data:data);
  71.   b = recv_line(socket:soc, length:1024);
  72.   http_close_socket(soc);
  73.   if(!b){
  74.       security_hole(port);
  75.     exit(0);
  76.     }
  77.  } 
  78.  else exit(0);
  79.  
  80.  foreach dir (cgi_dirs())
  81.  {
  82.  soc2 = http_open_socket(port);
  83.  if(soc2)
  84.   {
  85.   data = http_get(item:string(dir, "/testcono?", crap(2000)), port:port);
  86.   send(socket:soc, data:data);
  87.   c = recv_line(socket:soc, length:1024);
  88.   http_close_socket(soc);
  89.   if(!strlen(c)){
  90.       security_hole(port);
  91.     exit(0);
  92.     }
  93.   }
  94.  }
  95. }
  96.